public class Area
{
public static void main(String [] args)
{
double length = 4;
double width = Math.abs(-1 * Math.abs(Math.pow(Math.sqrt(Math.pow(Math.sqrt(Math.E), 2)), 2))); //Love, Dan and Tom
System.out.println("width: " + width);
System.out.println("length: " + length);
double area = length * width;
System.out.println("The area of the rectangle is " + area);
}
}